home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiniExamples / AppKit / ZooView / Controller.h < prev    next >
Text File  |  1995-06-12  |  598b  |  31 lines

  1.  
  2. /* 
  3.  * Controller.m
  4.  *
  5.  * Purpose:
  6.  *        This object serves as the browsers delegate, and does some initialization.
  7.  *
  8.  * You may freely copy, distribute, and reuse the code in this example.
  9.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  10.  * fitness for any particular use.
  11.  *
  12.  * Written by: Mary McNabb
  13.  * Created: Apr 91
  14.  *
  15.  */
  16.  
  17. #import <objc/Object.h>
  18.  
  19. @interface Controller:Object
  20. {
  21.     id    zooSplitView;
  22.     id theBrowser;
  23.     id rightView;
  24. }
  25.  
  26. - appDidInit:sender;
  27. - (int)browser:sender fillMatrix:matrix inColumn:(int)column;
  28. - browserCellWasSelected:sender;
  29.  
  30. @end
  31.